home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / mkbox.doc < prev    next >
Text File  |  1987-08-18  |  1KB  |  39 lines

  1.  
  2.  
  3.        NAME
  4.                mkbox -- make a box on the screen
  5.  
  6.        SYNOPSIS
  7.                #include "graphics.h"
  8.                void mkbox(startr, startc, width, ht, page);
  9.                int startr;       starting row (top)
  10.                int startc;       starting column (left)
  11.                int width;        how many columns wide
  12.                int ht;           how many rows high
  13.                int page;         which video page (assuming
  14.                                  proper video mode)
  15.  
  16.        DESCRIPTION
  17.        This function will make a double line box using the IBM
  18.        graphics characters on the "page" specified.  The "startr"
  19.        and "startc" parameters anchor the upper left corner.  The
  20.        "ht" and "width" set the dimensions.  No checks are made for
  21.        valid numbers.  Function can be used with both CGA and Mono
  22.        cards, and with EGA cards in CGA or MONO modes.
  23.  
  24.        EXAMPLE
  25.               mkbox(0, 0, 80, 23, 0);
  26.           will make a box around the outside of an 80 x 24 screen.
  27.  
  28.  
  29.  
  30.        CAVEAT
  31.               if using the direct video access routines, use
  32.               dvid_box() instead of this function.
  33.  
  34.  
  35.  
  36.  
  37.  
  38.        This function is found in SMTCx.LIB for the Turbo-C Compiler.
  39.